-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deduplicate the discover
step documentation
#3311
base: main
Are you sure you want to change the base?
Conversation
@psss I am not sure about deleting also the follwoing lines Lines 229 to 237 in 1de4920
The configs are explained in the inherited configuration |
1de4920
to
f467ba5
Compare
Also @psss should I include the removal of the no longer needed information from the specs in this PR? |
f467ba5
to
137f23f
Compare
6fcb18e
to
443cc56
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, just a couple formatting suggestions.
1dd0e5a
to
c71fac2
Compare
Hello, how can I fix the CI pathspec issue? |
Hopefully soon to be fixed by #3507 |
3d0b208
to
00ed836
Compare
ce2da59
to
0ad1f54
Compare
For some reason with the current patch the following command is not working:
It's likely related with the deletion in the discover.fmf but after restoring the file I don't see it works... |
Removed file is not causing this, it's about what was added to
The If you add the following bit to your code, does it work? diff --git a/tmt/utils/rest.py b/tmt/utils/rest.py
index c7f4a613..2ee4431c 100644
--- a/tmt/utils/rest.py
+++ b/tmt/utils/rest.py
@@ -201,6 +201,13 @@ class RestVisitor(docutils.nodes.NodeVisitor):
depart_literal = _noop_departure
+ def visit_emphasis(self, node: docutils.nodes.literal) -> None:
+ self.log_visit(str(node))
+
+ self._emit(click.style(node.astext(), fg='yellow'))
+
+ depart_emphasis = _noop_departure
+
def visit_literal_block(self, node: docutils.nodes.literal_block) -> None:
self.log_visit(str(node)) |
@happz thanks for the quick reply, that makes sense. |
32940c5
to
e4b0e14
Compare
@psss any more thoughts on this PR? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a couple of suggestions.
6fa6573
to
cf0f02a
Compare
Currently, the documentation about discover is duplicated in someway between the specification and the plugin section. Adds the missing information into the plugin section as it will be the primary source. Signed-off-by: mcasquer <[email protected]>
Updates the modified tests behavior configs putting more information and adds all the parameters supported. Signed-off-by: mcasquer <[email protected]>
Signed-off-by: mcasquer <[email protected]>
Signed-off-by: mcasquer <[email protected]>
Signed-off-by: mcasquer <[email protected]>
Signed-off-by: mcasquer <[email protected]>
Signed-off-by: mcasquer <[email protected]>
Signed-off-by: mcasquer <[email protected]>
Signed-off-by: mcasquer <[email protected]>
Signed-off-by: mcasquer <[email protected]>
Also adds some missing information for dis git configs. Signed-off-by: mcasquer <[email protected]>
Also updates the adjust litearal to be compatible with this function. Signed-off-by: mcasquer <[email protected]>
Signed-off-by: mcasquer <[email protected]>
cf0f02a
to
0fdf55f
Compare
Currently, the documentation about discover is duplicated in someway between the specification and the plugin section. Adds the missing information into the plugin section as it will be the primary source.
Pull Request Checklist